/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
}

body {
    background: #000;
    color: white;
}

/* HEADER */
.header {
    background: rgba(0,0,0,0.85);
    border-bottom: 3px solid #00eaff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header nav a {
    margin-left: 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.header nav a:hover,
.header nav a.active {
    color: #00eaff;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* HERO VIDEO */
.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.35);
}

.hero-content h2 {
    font-size: 42px;
    color: #00eaff;
}

.hero-content p {
    margin-top: 8px;
    font-size: 18px;
    color: #cfcfcf;
}

/* PRODUCT CARDS */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 40px 20px;
}

.card {
    width: 270px;
    padding: 20px;
    background: rgba(0,0,0,0.65);
    border: 2px solid #00eaff;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #00eaff;
}

.card img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.card h3 {
    color: #00eaff;
    margin-bottom: 8px;
}

.price {
    margin-bottom: 18px;
    font-size: 18px;
    color: #fff;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 18px;
    background: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn:hover {
    background: #008bbd;
}

/* FOOTER */
footer {
    text-align: center;
    background: rgba(0,0,0,0.85);
    padding: 20px;
    border-top: 3px solid #00eaff;
    margin-top: 40px;
}
